home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Programming / SAS-C / sc655pch / amiproc / amiproc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-09  |  413 b   |  22 lines

  1. #ifndef D_DATASEG_H
  2. #define D_DATASEG_H
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. #include <dos.h>
  9.  
  10. // The following functions provide a convenient way to spawn
  11. // a new subprocess with full autoinitialization, access to
  12. // all the normal library functions, etc.
  13.  
  14. struct AmiProcMsg *AmiProc_Start(int (*FuncPtr)(void *), void *UserData);
  15. int AmiProc_Wait(struct AmiProcMsg *);
  16.  
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20.  
  21. #endif
  22.